home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / run / 2602 / grpxxx.hlp < prev    next >
Text File  |  1989-04-11  |  543b  |  14 lines

  1. GRPAVG, GRPMAX, GRPMIN, GRPSUM
  2.  
  3. Special constants whose values are set by the most recent use of the
  4. GROUP procedure.  The values correspond to the average, maximum,
  5. minimum, and sum of the values for all expressions used in the GROUP
  6. call at the step time of that call.
  7.  
  8. Each time GROUP is called, these values are updated.  Hence, use the
  9. ampersand terminator to group the GROUP call with the statement(s) that
  10. use these values.  For example,
  11.  
  12.     GROUP(expr1,expr2,expr3,expr4) &
  13.     PLOT(GRPAVG) & CONNECT(t,GRPMIN,t,GRPMAX);
  14.